home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gigarom 1
/
Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso
/
FILES
/
HYP
/
A-B
/
AREAC&TF.cpt
/
•AC&TF• test...
/
background_72532.txt
< prev
next >
Wrap
Text File
|
1992-03-13
|
2KB
|
93 lines
-- background: 72532 from stack: in.
-- bmap block id: 73329
-- flags: 0000
-- background id: 0
-- name: Welcome
-- part 1 (field)
-- low flags: 81
-- high flags: 0002
-- rect: left=15 top=33 right=54 bottom=202
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 3
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: LastDate
-- part 3 (field)
-- low flags: 80
-- high flags: 0002
-- rect: left=15 top=8 right=29 bottom=54
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 3
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: GMTHere
-- part 5 (field)
-- low flags: 80
-- high flags: 0001
-- rect: left=112 top=14 right=34 bottom=267
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 3
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: DSTObservedHere
-- part 6 (button)
-- low flags: 00
-- high flags: A003
-- rect: left=183 top=299 right=325 bottom=369
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: Lock/Unlock All Fields
----- HyperTalk script -----
on mouseUp
answer "Do you want to Lock or Unlock all the fields in the stack?" with "Lock" or "Unlock" or "Cancel"
if it is not "Cancel" then
set lockScreen to true
if it is "Lock" then
put true into newState
else
put false into newState
end if
put the id of this card into startCard
go to first card of bg "Main"
set the lockText of bg field "State" to newState
set the lockText of bg field "Country" to newState
set the lockText of bg field "Country Code" to newState
set the lockText of bg field "Area/City Code" to newState
--set the lockText of bg field "City Names" to newState
go to card "Credits"
set the lockText of card field "Credits" to newState
go to card "Help"
set the lockText of bg field "Help" to newState
go to startCard
set lockScreen to false
end if
end mouseUp